home *** CD-ROM | disk | FTP | other *** search
/ PC Direct 1995 September / PCD0995.ISO / files / intro.dir / 00053_Attract w-start butn+panel.PICT.ls < prev    next >
Encoding:
Text File  |  1995-01-24  |  625 b   |  32 lines

  1. on mouseUp
  2.   repeat with x = 1 to 10
  3.     puppetSprite(x, 0)
  4.   end repeat
  5.   updateStage()
  6.   if the controlDown then
  7.     if the optionDown then
  8.       put "Hi Heidi!" into field "Who to"
  9.     else
  10.       put "Hi Alex!" into field "Who to"
  11.     end if
  12.     go("Presentation")
  13.     exit
  14.   end if
  15.   if the shiftDown then
  16.     put "Hi Cathy!" into field "Who to"
  17.     go("Presentation")
  18.     exit
  19.   end if
  20.   if the commandDown then
  21.     put "Hi Karyn!" into field "Who to"
  22.     go("Presentation")
  23.     exit
  24.   end if
  25.   if the optionDown then
  26.     put "Company Name" into field "Who to"
  27.     go("Presentation")
  28.     exit
  29.   end if
  30.   go("start")
  31. end
  32.